<?xml version='1.0' encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    version='1.0'>
<xsl:output method="xml" encoding="ISO-8859-1" indent="yes"/>

    <xsl:template match=PLANETES>
        <fo:root xmlns:fo=http://www.w3.org/1999/XSL/Format>
            <fo:layout-master-set>
                 <fo:simple-page-master master-name=page
                     page-height=400mm page-width=300mm
                     margin-top=10mm margin-bottom=10mm
                     margin-left=20mm margin-right=20mm>
   
                     <fo:region-body
                         margin-top=0mm margin-bottom=10mm
                         margin-left=0mm margin-right=0mm/>

                     <fo:region-after extent=10mm/>
                 </fo:simple-page-master>
             </fo:layout-master-set>

             <fo:page-sequence master-name=page>
                 <fo:flow flow-name=xsl-region-body>
                     <xsl:apply-templates/>
                 </fo:flow>
             </fo:page-sequence>
        </fo:root>
    </xsl:template>

    <xsl:template match=PLANETE/NOM>
        <fo:block font-weight=bold font-size=36pt
            line-height=48pt font-family=sans-serif>
            Nom:
            <xsl:apply-templates/>
        </fo:block>
    </xsl:template>

    <xsl:template match=PLANETE/MASSE>
        <fo:block font-size=36pt line-height=48pt
            font-family=sans-serif>
            Masse (Terre = 1):
            <xsl:apply-templates/>
        </fo:block>
    </xsl:template>

    <xsl:template match=PLANETE/JOUR>
        <fo:block font-size=36pt line-height=48pt font-family=sans-serif>
            Jour (Terre = 1):
            <xsl:apply-templates/>
        </fo:block>
    </xsl:template>

    <xsl:template match=PLANETE/RAYON>
        <fo:block font-size=36pt line-height=48pt font-family=sans-serif>
            Rayon (en miles) :
            <xsl:apply-templates/>
        </fo:block>
    </xsl:template>

    <xsl:template match=PLANETE/DENSITE>
        <fo:block font-size=36pt line-height=48pt font-family=sans-serif>
            Densit (Terre = 1) :
            <xsl:apply-templates/>
        </fo:block>
    </xsl:template>

    <xsl:template match=PLANETE/DISTANCE>
        <fo:block font-size=36pt line-height=48pt font-family=sans-serif>
            Distance (en millions de miles) :
            <xsl:apply-templates/>
        </fo:block>
    </xsl:template>
</xsl:stylesheet>
